home *** CD-ROM | disk | FTP | other *** search
- /*
- * lfsDescInt.h --
- *
- * Declarations of data structures for file descriptors internal to
- * a LFS file system.
- *
- * Copyright 1990 Regents of the University of California
- * Permission to use, copy, modify, and distribute this
- * software and its documentation for any purpose and without
- * fee is hereby granted, provided that the above copyright
- * notice appear in all copies. The University of California
- * makes no representations about the suitability of this
- * software for any purpose. It is provided "as is" without
- * express or implied warranty.
- *
- * $Header: /cdrom/src/kernel/Cvsroot/kernel/lfs/lfsDescInt.h,v 1.3 92/09/03 18:13:24 shirriff Exp $ SPRITE (Berkeley)
- */
-
- #ifndef _LFSDESCINT
- #define _LFSDESCINT
-
- #include <fsioFile.h>
-
- /* constants */
-
- /* procedures */
-
- extern void LfsDescCacheInit _ARGS_((struct Lfs *lfsPtr));
- extern void LfsDescCacheDestory _ARGS_((struct Lfs *lfsPtr));
- extern ClientData LfsDescCacheBlockInit _ARGS_((struct Lfs *lfsPtr,
- LfsDiskAddr diskBlockAddr,
- Boolean cantBlock, char **blockStartPtr));
- extern void LfsDescCacheBlockRelease _ARGS_((struct Lfs *lfsPtr,
- ClientData clientData, Boolean deleteBlock));
-
- #endif /* _LFSDESCINT */
-
-